home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950726-19950929 / 000004_news@columbia.edu_Tue Jul 25 14:16:40 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20821
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 26 Jul 1995 02:02:34 -0400
  3. Received: by apakabar.cc.columbia.edu id AA06834
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 26 Jul 1995 02:02:32 -0400
  5. Newsgroups: comp.protocols.kermit.misc
  6. Path: news.columbia.edu!panix!news.mathworks.com!gatech!howland.reston.ans.net!cs.utexas.edu!news.sprintlink.net!pcnet.com!hillae!tan
  7. From: tan@hillae.com (Tan Bronson)
  8. Subject: Re: how do I specify a port number to kermit?
  9. Message-Id: <DC9zns.4x8@hillae.com>
  10. Organization: Hill Arts & Entertainment Systems, Inc. Guildford, Connecticut
  11. References: <DC8M08.K32@hillae.com> <3v1c3a$4d7@apakabar.cc.columbia.edu>
  12. Date: Tue, 25 Jul 1995 14:16:40 GMT
  13. Lines: 28
  14. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <3v1c3a$4d7@apakabar.cc.columbia.edu>,
  17. Frank da Cruz <fdc@watsun.cc.columbia.edu> wrote:
  18. >In article <DC8M08.K32@hillae.com>, Tan Bronson <tan@hillae.com> wrote:
  19. >>I'd like to connect to a given port of a terminal server.
  20. >>I see how to specific the address (set host xxx),
  21. >>but how do I specify the port-number?
  22. >>
  23. > [...]
  24. > 2. Type "help".  This would have led you to "help set host".
  25.     I tried, but you'll see that the port_number is not mentioned:
  26.         C-Kermit>help set host
  27.  
  28.         Syntax:  SET HOST hostname-or-number
  29.  
  30.         Select a network host.  Use this command instead of SET LINE.
  31.         After SET HOST give the host name or number.  TCP/IP Examples:
  32.  
  33.         SET HOST watsun.cc.columbia.edu
  34.         SET HOST 128.59.39.2
  35.  
  36. > 3. Use the "?" feature of the command parser:
  37. >
  38. >    C-Kermit>set host ? IP host name or number
  39. >    C-Kermit>set host foo.bar.baz.edu ? Port number
  40. >    C-Kermit>set host foo.bar.baz.edu 2000
  41. >
  42. >Hey, the syntax is just like Telnet :-)
  43.     Thanks for the response!